
.SUFFIXES:

.SUFFIXES: .cpp .rc

GCPPC=icc
GCPPFLAGS=-Fd -c -W2 -gm+ -gd+ -Ti+

GLINK=icc /tdp
GLFLAGS=/B"/PM:PM /DEBUG"
LINKLIST=DDE4MUII.LIB DDE4CCI.LIB

ALL: threads.exe

threads.exe: threads.obj iuserhdr.obj makefile threads.res
  $(GLINK) $(GLFLAGS) threads.obj iuserhdr.obj /Fethreads.exe $(LINKLIST)
  rc threads.res threads.exe

{.}.cpp.obj:
   $(GCPPC) $(GCPPFLAGS) .\$*.cpp

{.}.rc.res:
   rc -r .\$*.rc
